Prepare new upload.
authorBoyuan Yang <byang@debian.org>
Mon, 1 Mar 2021 00:43:43 +0000 (19:43 -0500)
committerBoyuan Yang <byang@debian.org>
Mon, 1 Mar 2021 00:48:27 +0000 (19:48 -0500)
debian/changelog
debian/rules

index eee8331dc179f4c45bebd7d829eb75d2c8ac4678..5fd2d6b6702d3e1fc2cdcc6dff25602c8c50f44d 100644 (file)
@@ -1,3 +1,13 @@
+opencc (1.1.1+git20200624+ds2-6) unstable; urgency=high
+
+  * Team upload.
+  * debian/patches/0005: Add upstream patch to fix severe performance
+    regression in `Conversion::Convert` that caused O(N^2) complexity.
+  * debian/rules: Disable parallel build to workaround some random
+    build error for now.
+
+ -- Boyuan Yang <byang@debian.org>  Sun, 28 Feb 2021 19:48:01 -0500
+
 opencc (1.1.1+git20200624+ds2-5) unstable; urgency=medium
 
   * Team upload.
index 9bfc988f31ad1c56d92e8d6da431c3eab86ccf1c..e4cc9c48e7dd5f14ef1a3f771705bbe654753f63 100755 (executable)
@@ -8,8 +8,10 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all
 
 include /usr/share/dpkg/architecture.mk
 
+# Disable parallel build to circumvent some random build error
+# (needs further investigation)
 %:
-       dh $@ --buildsystem=cmake --with pkgkde_symbolshelper
+       dh $@ --buildsystem=cmake --with pkgkde_symbolshelper --no-parallel
 
 BUILD_OPTIONS = \
     -DCMAKE_INSTALL_PREFIX=/usr \